Platform Explorer / Nuxeo Platform 2023.9

Component org.nuxeo.ecm.tags.schemas

Requirements

Resolution Order

513
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.

Contributions

XML Source

<?xml version="1.0"?>

<component name="org.nuxeo.ecm.tags.schemas">

  <require>org.nuxeo.ecm.core.CoreExtensions</require>

  <extension target="org.nuxeo.ecm.core.schema.TypeService" point="schema">

    <schema name="facetedTag" src="schemas/facetedTag.xsd" prefix="nxtag" />

    <property schema="facetedTag" name="tags/*/label" indexOrder="ascending" />
  </extension>

  <extension target="org.nuxeo.ecm.core.schema.TypeService" point="doctype">

    <facet name="NXTag">
      <schema name="facetedTag" />
    </facet>

    <doctype name="Folder" append="true">
      <facet name="NXTag" />
    </doctype>

    <doctype name="File" append="true">
      <facet name="NXTag" />
    </doctype>

    <doctype name="Note" append="true">
      <facet name="NXTag" />
    </doctype>

    <doctype name="Collection" append="true">
      <facet name="NXTag" />
    </doctype>

  </extension>

</component>